home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 21
/
Cream of the Crop 21 (Terry Blount) (October 1996).iso
/
editor
/
auror300.zip
/
CONFIG.AML
< prev
next >
Wrap
Text File
|
1996-07-17
|
19KB
|
410 lines
//--------------------------------------------------------------------
// The Aurora Editor v3.0, Copyright (C) 1993-1996 nuText Systems
//
// CONFIG.AML
// Configuration Settings (included by Main.aml)
//
// To change a configuration setting, locate the desired setting in this
// file and type in the new value for the setting. Do not change the
// name of the setting. Character and string values should be enclosed
// in quotes.
//
// When you are finished, save this file and select Recompile the
// Editor from the Set menu. Exit and re-enter the editor for your
// changes to take effect.
//--------------------------------------------------------------------
// Video -------------------------------------------------------------
public VidCols = 0 // video columns (0=default)
public VidRows = 0 // video rows (0=default)
public VidStr = "░" // video background fill string
// (null=use existing bkgnd)
// Mouse -------------------------------------------------------------
public Mouse = "y" // (y/n) enable/disable mouse
public MouseOpt = '' // mouse options:
// r=reverse mouse buttons
// d=hide mouse after keystroke
public MouSenX = 6 // x sensitivity (lower=more sensitive)
public MouSenY = 13 // y sensitivity (lower=more sensitive)
public MouDST = 57 // double-speed threshold
public MouDouble = 300 // double-click interval (in msec)
public MouHold = 300 // mouse hold time (in msec)
public MouDelay = 0 // mouse scrolling delay (in msec)
// 0=fast (try 0,8,16,24,30)
public MouMark = "s" // default mark type on single
// click & drag:
// k=column
// l=line
// s=stream
public MouMarkD = "l" // default mark type on double-click
// & drag (see MouMrk above)
// Margins and Tabs --------------------------------------------------
public LMargin = 1 // left margin
public RMargin = 72 // right margin
public VarTabs = "4 8 16 24 50 72" // tab stops for variable tabs
public TabWidth = 8 // tab width for fixed interval tabs
public TabOpt = "oh" // display tab characters as
// a=ascii 9
// o=spaces, if found on open
// s=spaces
// tableft/tabright options
// h=shift text in insert mode
// r=use real tabs
// Open --------------------------------------------------------------
public OpenOpt = "f" // default open options
// z=maximize
// f=full screen
// c=cascade
// n=minimize
// h=horz split
// v=vert split
// e=use same window
public LineDlm = "0D0A" // default line delimiter str (in hex)
// 0D0A=CR/LF
// 0A=LF
// 0D=CR
public BinaryLength = 64 // default binary line length
public TruncLength = 0 // maximum line length at load
// (0=editor maximum)
// default file extensions -------------------------------------------
public DefExt = "c h cpp doc aml dox txt asm pas inc bat" //
// Save --------------------------------------------------------------
public BackupDir = '' // backup directory (null=directory
// of file). Note: backslash chars
// (\) must be entered twice
// within quotes. For example:
// 'd:\\backup\\aurora'
public BackupExt = "bak" // backup file extension
public SaveOpt = "t" // save options
// e=entab while saving
// t=trim trailing blanks
// (non-binary only)
// x=don't save fold comments
// (even if comments are defined)
// z=append ctrl-z to end-of-file
public FoldSign = " [fold] " // fold comment signature
public AutoSave = 0 // default seconds between automatic
// saves (0=OFF)
// Edit --------------------------------------------------------------
public DefaultSet = "abiux" // default window settings for new
// edit windows:
// a=Autoindent
// b=Backup
// d=Draw Mode
// i=Insert Mode (also in prompts)
// l=Live Word Wrap
// m=Match Character
// s=Smart tabs
// t=Translate
// u=Undo enabled
// v=Variable tabs
// w=Word Wrap (standard)
// x=Syntax Highlighting
public UndoSize = 300 // undo-redo stack size
public HistSize = 50 // prompt history size
public ClipName = "clip" // default clipboard name
public EnterIns = "s" // <enter> key behavior in Ins mode
// s=split line
// i=insert line
// n,null=move to start of next line
public EnterOvl = "n" // <enter> key behavior in Ovl mode
// (see EnterIns above)
public DelJoin = "y" // (y/n) join lines if delete char
// at end-of-line
public BakJoin = "y" // (y/n) join lines if backspace at
// column one
public BakOvl = "n" // (y/n) backspace overlay if not
// in insert mode
public InsAbove = "n" // (y/n) insert line blocks above
// current line (copy, move, paste)
public ClipLine = "n" // (y/n) copy/cut uses current
// line if nothing marked
public CopyLine = "y" // (y/n) copyblock repeats current
// line if nothing marked
public DelLine = "n" // (y/n) deleteblock deletes current
// line if nothing marked
public FormatOpt = "kre" // text reformatting options
// j=justify both left and right
// k=keep spaces
// r=keep first-line indent
// when no mark:
// c=advance cursor
// e=format to paragraph-end only
public